home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / vmake / readme.vmake2-9 < prev    next >
Encoding:
Text File  |  1994-02-12  |  1.9 KB  |  35 lines

  1. The following changes have been made between VMake versions 2.8 and 2.9
  2.  
  3. The behavior of icons has been refined slightly.  If you READ a project and
  4. then SAVE it, the icon (.info file) will not be changed, ie any tooltypes
  5. will not be modified.  If you create a new project or save an existing
  6. project under a new name, a new icon will be created from the default,
  7. dcc:config/Default_Project.info.
  8.  
  9. The SAVE command has been modified.  If you save a project under a new name,
  10. the new name becomes the current name for the project.  The old project entry
  11. in the VMake window Project Files list (eg oldproj.DICE) will be removed and
  12. a new entry added to the list (eg newproj.DICE).  Any command using the %f
  13. parameter will then be expanded to use the new project name. 
  14.  
  15. The VMake .config file has been modified significantly for version 2.9.
  16. Every TEXT, CONFIG and SUBRTN entry must now have two strings.  The first
  17. string is the position or slot number for the entry, and the second is the
  18. text to be saved at that position.  With this change, we anticipate that
  19. future changes to VMake will normally be compatible with with older versions
  20. of VMake.config files that were created in the VMake 2.9 format.  This is
  21. intended to simplify use of project specific config files.  Note that it is
  22. no longer necessary for the entries to be in any specific order.  You can
  23. keep any entries that you might modify after the rest of the entries, which
  24. might simplify the job of applying updates to your .config files.  For 
  25. example, CONFIG slot 7 holds the command to invoke your editor, and you may
  26. not want to use the entry for this slot that is released with DICE.
  27.  
  28. Here is an example of an entry in the new format:
  29.  
  30. CONFIG "7"  "RUN >nil: AME %s HUNT %(_PORT_)"
  31.  
  32. If you use an older version of a config file, then any features that depend
  33. on new TEXT or CONFIG entries won't work, but things that depend on the
  34. older entries should work correctly.
  35.